Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / users / {id} / role-mappings / clients / {client} / composite

Get effective client-level role mappings. This recurses any composite roles

Path parameters:
realm - realm name (not id!)
id -
client -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/users/{id}/role-mappings/clients/{client}/compositeGet effective client-level role mappings.

Method Detail

GET /admin/realms/{realm}/users/{id}/role-mappings/clients/{client}/composite

Get effective client-level role mappings. This recurses any composite roles

HTTP Example:
GET /admin/realms/{realm}/users/{id}/role-mappings/clients/{client}/composite
API Example:

UserClientRoleMappingsResource.getCompositeClientRoleMappings({'realm': /* name realm name (not id!) */,
  'id': …,
  'client': …});

Output:
List<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.5.0-Final